home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / portray / exam_001.sce < prev    next >
Text File  |  1993-12-26  |  1KB  |  86 lines

  1. ~ EXAM_001.SCE - This file shows the different appearence of Diffuse, Specular
  2.   and transparent materials
  3.  
  4.   Written on : 26th December 1993
  5.   Author     : Peter Morris
  6.  
  7. ~
  8.  
  9. camera
  10.    look-at (0.0 0.0 0.0)
  11.    drop-line (0 -1 0)
  12.    origin (-3 3 -8)
  13.    depth 0.56
  14.    x-size 0.64
  15.    y-size 0.48
  16.    filter standard
  17. ;
  18.  
  19. image
  20.    xsize 640
  21.    ysize 480
  22. ;
  23.  
  24. object
  25.    plane
  26.       position (-1000 0 -1000)
  27.       normal (0 1 0)
  28.       x-axis (1 0 0)
  29.       y-axis (0 0 1)
  30.    ;
  31.    material
  32.       chequers
  33.          material-a
  34.             colour (1 1 1)
  35.          ;
  36.          material-b
  37.             colour (0 0 0)
  38.          ;
  39.       ;
  40.    ;
  41. ;
  42.  
  43. object
  44.    sphere
  45.       centre (-3 1 0)
  46.       radius 1
  47.    ;
  48.    material
  49.       colour (1 0 0)
  50.    ;
  51. ;
  52.  
  53.  
  54. object
  55.    sphere
  56.       centre (0 1 0)
  57.       radius 1
  58.    ;
  59.    material
  60.       colour (0 1 0)
  61.       diffuse-reflection 0.0
  62.       specular-reflection 1.0
  63.       reflection 0.1
  64.    ;
  65. ;
  66.  
  67.  
  68. object
  69.    sphere
  70.       centre (3 1 0)
  71.       radius 1
  72.    ;
  73.    material
  74.       colour (.2 .2 1)
  75.       diffuse-reflection 0.0
  76.       transparancy 1.0
  77.       refractive-index 1.2
  78.    ;
  79. ;
  80.  
  81. light
  82.    colour (1 1 1)
  83.    position (-400 1000 -300)
  84. ;
  85.  
  86.